home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / ApplyTexture.ifx.pre < prev    next >
Text File  |  1996-03-02  |  931b  |  42 lines

  1. /*
  2.  * ApplyTexture.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Apply Texture effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_ApplyTex_'
  19.  
  20. tpath = GETCLIP(base||'Path')
  21. tfile = GETCLIP(base||'File')
  22. tname = GETCLIP(base||'Texture')
  23. tdep  = GETCLIP(base||'Depth')
  24.  
  25. IF tpath = "" THEN tpath = "Textures"
  26. IF tdep = "" THEN tdep = 140
  27.  
  28. Gadget.1 = 'STRING  150  5 150 14 "Texture:"' tname
  29. Gadget.2 = 'FILEREQ 302  5  22 14 "Select Texture:"' tpath '#?' tname 'AT=1'
  30. Gadget.3 = 'INTEGER 150 20  50 14 "Depth:"' tdep
  31. Gadget.4 = 'END'
  32.  
  33. NewComplexRequest '"Apply Texture"' Gadget 340 40
  34. IF rc ~= 0 THEN EXIT rc
  35.  
  36. CALL SETCLIP(base||'Texture', result.1)
  37. CALL SETCLIP(base||'Path', result.2.path)
  38. CALL SETCLIP(base||'File', result.2.file)
  39. CALL SETCLIP(base||'Depth', result.3)
  40.  
  41. EXIT
  42.